/* 重置 */

html, body {
  position: relative;
  height: 100%;
}

body {
  background: #eee;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #000;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0em;
}

ul {
  margin: 0;
  padding-inline-start: 0px;
  text-decoration: none;
  list-style: none;
  padding: none;
}

a {
  text-decoration: none;
  color: #b5b0ab;
}

/* 框架塌陷 */

.frame:after {
  display: block;
  content: "";
  height: 0;
  clear: both;
}

.swiper-container {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  /* text-align: center; */
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

/* nav */

nav {
  --transition-time: 1000ms;
  position: absolute;
  width: 400px;
  height: 100%;
  display: flex;
  align-items: center;
  background: rgba(33, 146, 20, 0.45);
  /* background-image: url(../img/background/nav.jpg); */
  backdrop-filter: blur(20px);
  transform: translateX(-100%);
  transition: all 800ms cubic-bezier(0.8, 0, 0.33, 1);
  z-index: 4;
}

nav a {
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-decoration: none;
  user-select: none;
  color: #fff;
}

nav .nav-links {
  --link-height: 60px;
  position: relative;
  width: 100%;
}

nav .nav-links li {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: var(--link-height);
  list-style: none;
  opacity: 0;
  transform: translateX(-50%);
  transition: all var(--transition-time) cubic-bezier(0.8, 0, 0.33, 0.9);
  transition-delay: calc(20ms + var(--delay));
  cursor: pointer;
  z-index: 8;
}

nav .nav-links li:hover {
  color: rgba(255, 255, 255, 0.85);
}

nav .nav-links li a {
  pointer-events: none;
}

nav .nav-links li ol {
  display: none;
}

nav .nav-links .hover-el {
  position: absolute;
  width: 100%;
  height: var(--link-height);
  top: var(--y);
  left: 0;
  opacity: 0;
  background: radial-gradient(circle at var(--mousex) var(--mousey), rgba(255, 247, 0, 0.15) 0%, rgba(255, 247, 0, 0.15) 100%);
  transition: all 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
  pointer-events: none;
  z-index: 5;
}

nav .sub-menu {
  --link-height: 60px;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}

nav .sub-menu ol {
  list-style: none;
}

nav .sub-menu ol li {
  display: flex;
  justify-content: center;
  align-items: center;
  height: var(--link-height);
  transition: all var(--transition-time) ease;
  transition-delay: calc(80ms + var(--delay));
  cursor: pointer;
}

nav .sub-menu ol li:hover {
  background: rgba(255, 247, 0, 0.15);
}

nav .sub-menu ol li.off-menu {
  opacity: 0;
  transform: translateY(30%);
}

nav .sub-menu ol li.on-menu {
  opacity: 1;
  transform: translateY(0%);
}

nav .sub-menu ol li a {
  font-size: 1.2rem;
  font-weight: normal;
}

nav .sub-menu-btn {
  --icon-width: 40px;
  position: absolute;
  top: 6%;
  left: 10%;
  width: var(--icon-width);
  height: var(--icon-width);
  background: rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  opacity: 0;
  transform: translateX(-100%);
  transition: all var(--transition-time) cubic-bezier(0.8, 0, 0.33, 1.25);
  cursor: pointer;
  z-index: 8;
}

nav .sub-menu-btn .line {
  width: calc(var(--icon-width) - 28px);
  height: 2px;
  background: #fff;
  display: flex;
  flex-direction: column;
  margin: 12px 10px;
}

nav .sub-menu-btn .line__1 {
  transform-origin: left;
  transform: rotate(-35deg) translate(-1px, 8px);
}

nav .sub-menu-btn .line__2 {
  transform-origin: left;
  transform: rotate(35deg) translate(-1px, -8px);
}

nav .menu-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  --icon-width: 25px;
  position: absolute;
  top: 6%;
  right: -24%;
  width: calc(var(--icon-width) + 25px);
  height: calc(var(--icon-width) + 25px);
  flex-direction: column;
  transition: all calc(100ms + var(--transition-time)) cubic-bezier(0.8, 0, 0.33, 1.25);
  cursor: pointer;
  z-index: 10;
}

nav .menu-btn.close .line__1 {
  transform: rotate(45deg) translate(2px, -3px);
}

nav .menu-btn.close .line__2 {
  transform: rotate(-45deg);
}

nav .menu-btn.close .line__3 {
  transform: rotate(45deg) translate(-2px, 3px);
}

nav .menu-btn .line {
  width: var(--icon-width);
  background: #fff;
  height: 2px;
  margin: 3px 0;
  box-shadow: 0px 0px 2.85px 0.15px rgba(0, 0, 0, 0.7);
  transition: all calc(var(--transition-time) + 100ms) cubic-bezier(0.9, 0, 0.33, 1);
}

nav .menu-btn .line__1 {
  width: var(--icon-width);
  transform-origin: left;
}

nav .menu-btn .line__2 {
  width: var(--icon-width);
  transform-origin: center;
}

nav .menu-btn .line__3 {
  width: var(--icon-width);
  transform-origin: right;
}

nav.nav-open {
  transform: translateX(0%);
}

nav.nav-open .menu-btn {
  right: 10%;
}

nav.nav-open .nav-links li {
  transform: translateX(0);
  opacity: 1;
}

nav.sub-menu-open .sub-menu-btn {
  opacity: 1;
  transform: translateX(0);
}

nav.sub-menu-open .nav-links li {
  pointer-events: none;
  opacity: 0;
  transform: translateY(-10%);
}

nav.sub-menu-open .nav-links .hover-el {
  opacity: 0;
}

/* 第一屏 */

.index-1 {
  position: relative;
  background-image: url(../img/background/index01.jpg);
  background-size: cover;
  background-repeat: repeat-y;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

/* logo */

.logo {
  position: absolute;
  top: 3%;
  width: 100%;
}

.logo img {
  max-width: 10%;
  z-index: 5;
}

.logo a {
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav .logo {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 7%;
  left: 36%;
  z-index: 10;
}

nav .logo img {
  width: 60%;
}

/* 底部 */

.bott-box {
  position: absolute;
  bottom: 0;
  z-index: 5;
  left: 2%;
}

.bott li {
  color: #b5b0ab;
  float: left;
}

.bott li a {
  transition: all .5s;
}

.bott li a:hover {
  color: red;
}

.zhacai-box {
  /* position: relative; */
  width: 100%;
  height: 100%;
}

.zhacai {
  position: absolute;
  z-index: 3;
  width: 26%;
  bottom: 10%;
  right: 16%;
}

.kuaizi {
  position: absolute;
  z-index: 5;
  width: 26%;
  top: 0;
  right: 8%;
}

.muban {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
}

.yan {
  width: 45%;
  position: absolute;
  bottom: -6%;
  opacity: .3;
  right: 8%;
  z-index: 4;
}

.meishi {
  position: absolute;
  right: 14%;
  top: 28%;
}

.wenan-box {
  position: relative;
  color: #fff;
  left: 14%;
  top: 28%;
  width: 46%;
}

.wenan-box h1>img {
  width: 96%;
}

.wenan-box p {
  font-size: 2.2em;
  text-transform: uppercase;
  width: 100%;
}

.min-1 {
  margin-top: 10px;
}

.min-1:nth-of-type(3) {
  position: relative;
}

.min-2 {
  max-width: 504px;
  position: relative;
}

.min-2 img {
  width: 100%;
}

.wenan-box h2 {
  position: absolute;
  top: 0;
  color: #e69e1a;
  font-size: 4.1em;
  width: 100%;
}

.min-2 img:nth-of-type(2) {
  position: absolute;
  left: 0;
  top: 0;
}

.anniu-1 {
  margin-top: 10px;
}

.anniu-1 li {
  float: left;
}

.anniu-1 li a {
  display: block;
  background-color: #e69e1a;
  border-radius: 27px;
  padding: 0 30px;
  line-height: 44px;
  color: #fff;
  font-size: 16px;
  transition: all .5s;
}

.anniu-1 li:nth-of-type(2) {
  margin-left: 20px;
}

.anniu-1 li:nth-of-type(2) a {
  background-color: #fff;
  color: #e69e1a;
}

.anniu-1 li a:hover {
  background-color: #58a305;
  color: #fff;
}

/* 第二屏 */

.index-2 {
  position: relative;
  background-image: url(../img/background/index-2.jpg);
  width: 100%;
  height: 100%;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-box {
  max-width: 24%;
  position: absolute;
  bottom: 16%;
  left: 6%;
}

.about-box .biaoti img {
  width: 100%;
}

.index-2 img{
  width: 100%;
}

/* 公司简介 */

.index-2 .about-db{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.index-2 .about-db img{
  display: block;
}

.about-wajj {
  position: absolute;
  padding: 1%;
  left: 6%;
  top: 24%;
  color: #fff;
  width: 46%;
  background-color: rgba(0, 0, 0, 0.45);
}

.about-wajj h1{
  font-size: 44px;
  font-weight: 500;
}


.about-wajj h2{
  font-size: 26px;
  font-weight: 500;
  line-height: 48px;
}

.about-wajj p{
  line-height: 42px;
  margin-top: 4px;
  text-indent:24px;
  font-size: 16px;
}





.about-wajj a{
  color: #ffffff;
  background-color: #58a305;
  border-radius: 24px;
  padding:12px 24px;
}

.about-img1{
  position: absolute;
  width: 46%;
  right: -3%;
  top: 22%;
  height: 100%;
  display: block;
}

.about-dw{
  position: relative;
  width: 100%;
  display: block;
  height: 100%;
}

.about-tr{
  position: absolute;
  top: 0;
  width: 9%;
  left: -10%;
}

.about-cai{
  position: absolute;
  width: 60%;
}


.about-clzc{
  position: absolute;
  top: 48%;
  z-index: 3;
}


.about-lj1{
  position: absolute;
  width: 23%;
  bottom: 0;
  right: 3%;
  z-index: 3;
}

.about-pwa{
  overflow: hidden;
  height: 300px;
  width: 100%;
  margin-bottom: 32px;
}







.index-2 .more-1{
  bottom: 14%;
}


.about-left2 a{
  display: block;
  background-color: #fff;
  box-shadow: 0px 0px 9.1px 0.9px rgba(0, 0, 0, 0.1);
  padding:20px 0;
  transition: all .5s;
  text-align: center;
}

.about-left2 a:hover{
  background-color: #e69e1a;


}

.about-left2 a:hover h2{
  color: #fff;
}


.about-left2 a:nth-of-type(1){
  margin-top: 14%;
}

.about-left2 a h2{
  color: #000;
  font-size: 24px;
}

.about-left2 a p{
  margin: 0;
  font-size: 16px;
  line-height: 28px;
}

.about-left3{
  float: left;
  width: 82%;
  position: relative;
  margin-left:2% ;
  height: 426px;
  overflow: hidden;
}

.about-left3 a{
  position: relative;
}

.about-left3 img{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  /* unnecessary styling properties */
  max-width: 100%;
  text-align: center;
  width: 100%;
}

.about-wenan1{
  float: left;
  width: 100%;
  margin-top: 10px;
}


.about-wenan1 p{
  margin: 0;
  font-size: 16px;
  color: #000;
  height: 82px;
  overflow: hidden;
}

.bot-box1{
  text-align: center;
  margin-top: 68px;
}

.bot-box1 a{
  font-size: 16px;
  background-color: #e69e1a;
  padding:12px 26px ;
  border-radius: 27px;
  color: #fff;
  transition: all .5s;
}


.bot-box1 a:hover{
  background-color: #58a305;
}



.about .about-bt {
  width: 38%;
  background-color: #fff;
  padding: 50px 20px 38px 20px;
  float: left;
  height: 100%;
}

.about .about-bt h1 {
  font-size: 2.2em;
}

.about .about-bt h1 {
  font-size: 24px;
  font-weight: 550;
  background-color: #e69e1a;
  color: #fff;
  padding: 10px;
}

.about .about-bt .about-wenan p {
  font-size: 16px;
  margin-top: 30px;
  text-indent: 32px;
  table-layout: fixed;
  text-align: justify;
}

.about .about-bt a {
  transition: all .5s;
  display: block;
  font-size: 14px;
  border: 1px dashed #b5b0ab;
  color: #b5b0ab;
  float: right;
  margin-top: 4px;
  padding: 4px 20px;
  z-index: 5;
}

.about .about-bt a:hover {
  color: #e69e1a;
  border: 1px solid #e69e1a;
}

.about-wenan {
  height: 47%;
  overflow: hidden;
  z-index: 5;
}

.about-pancai{
  position: absolute;
  width: 40%;
  right: -16%;
  top: -6%;
}

.about-pancai img{
  width: 100%;
}

.qiywh-box {
  float: left;
  width: 50%;
  height: 100%;
}

.qiywh-box .qyqj {
  text-align: center;
  width: 30%;
}

.qyqj {
  background-color: #e69e1a;
  float: left;
  padding: 20px 0;
}

.qyqj span {
  display: block;
}

.qyqj a {
  color: #fff;
  font-weight: 800;
  font-size: 18px;
}

.qiywh-box img {
  width: 100%;
  height: 100%;
}


.index-2 .about-meng {
  position: absolute;
  bottom: 7.2%;
  left: 30%;
  width: 30%;
}

.index-2 .about-meng img {
  width: 100%;
}

/* 产品中心 */

.index-3 {
  position: relative;
  background-image: url(../img/background/index-3.png);
  width: 100%;
  height: 100%;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.index-3 .chanp-box {
  position: absolute;
  top: 28%;
  width: 60%;
  overflow: hidden;
  height: 60%;
}





/* 产品系列 */

.index-3 .chanpzx {
  position: absolute;
  top: 18%;
  width: 60%;
}

.index-3 .chanpzx img {
  width: 100%;
  height: auto;
}


/*
.chanp-box .chanp li {
  padding-top: 3%;
  padding-bottom: 3%;
  position: relative;
  width: 30%;
  float: left;
  overflow: hidden;
}

.chanp-box .chanp li:nth-of-type(2) {
  padding-left: 1%;
  padding-right: 1%;
}

.chanp-box .chanp li:nth-of-type(5) {
  padding-left: 1%;
  padding-right: 1%;
}

.chanp-box .chanp li a {
  display: block;
  width: 100%;
}

.chanp-box .chanp li a:nth-of-type(2) {
  font-size: 16px;
  position: absolute;
  right: -300px;
  top: 0;
  color: #fff;
  width: 40%;
  padding: 8px 12px;
  background-color: #e69e1a;
  text-align: center;
  transition: all .5s;
}

.chanp-box .chanp li a:nth-of-type(2):hover {
  background-color: #219214;
}

.chanp-box .chanp li:hover a:nth-of-type(2) {
  right: 0;
}

.chanp-box .chanp li a img {
  width: 100%;
  height: auto;
} */

/*
.chanp-box .chanp li a:nth-of-type(3){
  position: absolute;
  display: block;
  bottom: 0;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  padding: 8px 0;
  background-image:
  -webkit-linear-gradient(top, rgba(230, 158, 26, 0.1) 0%, rgba(230, 158, 26, 0.5) 40%, rgba(230, 158, 26, 1) 98%, #FFFFFF 100%);
} */



/* 产品中心定时器 */
#ul1 li{
  position: relative;
  overflow: hidden;
}


#ul1 li:hover a{
  left: 0;
}

#ul1 li a{
  position: absolute;
  background-color: #58a305;
  padding: 12px 24px;
  top: 0;
  left:-200px;
  margin-top: 14%;
  color: #fff;
  transition: all .5s;
}

#ul1 li a:hover{
  background-color: #e69e1a;
}


.more-1 {
  position: absolute;
  bottom: 3%;
  text-align: center;
}

.more-1 a {
  color: #fff;
  display: block;
  background-color: #e69e1a;
  padding: 10px 12px;
  width: 200px;
  border-radius: 20px;
  transition: all .5s;
}

.more-1 a:hover {
  background-color: #219214;
}

/* 新闻咨询 */

.index-4 {
  position: relative;
  background-image: url(../img/background/index-4.jpg);
  width: 100%;
  height: 100%;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.index-4 .news-box {
  position: absolute;
  color: #fff;
  right: 0;
  height: 100%;
  width: 60%;
  background-color: rgba(230, 158, 26, .98);
}

.index-4 .about-box{
  left: 10%;
  bottom: 20%;
}

.news-1 {
  height: 100%;
  width: 100%;
}

.news-nrbox {
  margin-top: 22%;
}

.news-nrbox a li {
  padding: 10px 0;
  margin-left: 20px;
  position: relative;
}

.news-nrbox a li>p {
  float: left;
  border: solid 2px #fff;
  text-align: center;
  width: 15%;
  padding: 10px 0;
  transition: all .5s;
}

.news-nrbox a li>p span {
  display: block;
  text-align: center;
  font-size: 68px;
}

.news-nrbox a {
  display: block;
  color: #fff;
  z-index: 2;
  transition: all .5s;
  margin: 2% 0;
}

.news-nrbox a:hover {
  background-color: rgba(33, 146, 20, .5);
}

.news-nrbox a:hover .news-2>p {
  border: solid 2px #e69e1a;
}

.news-nr {
  width: 80%;
  float: right;
}

.news-nr h1 {
  font-size: 1.2em;
  overflow: hidden;
  height: 36px;
}

.news-nr p {
  margin-top: 12px;
  padding-right: 6%;
  height: 72px;
  overflow: hidden;
}

.bot-2 {
  margin-left: 44%;
  text-align: center;
  margin-top: 8%;
  width: 18%;
  z-index: 5;
}

.bot-2 a {
  border: 2px solid #fff;
  border-radius: 20px;
  padding: 8px 0;
  color: #fff;
  display: block;
  transition: all .5s;
}

.bot-2 a:hover {
  background-color: #219214;
}

/* 联系我们 */

.index-5 {
  position: relative;
  background-image: url(../img/background/index-5.jpg);
  width: 100%;
  height: 100%;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.index-5 .chanpzx {
  position: absolute;
  top: 18%;
  width: 60%;
}

.index-5 .chanpzx img {
  width: 100%;
  height: auto;
}

.lxwm {
  margin-left: 10%;
}

.lxwm-box {
  position: absolute;
  top: 35%;
  width: 60%;
  z-index: 2;
}

.lxwm-box .lxwm {
  float: left;
}

.lxwm-box .ewm-box {
  float: left;
}

.lxwm h1 {
  font-size: 28px;
  line-height: 52px;
}

.lxwm p {
  color: #4e4e4e;
  line-height: 32px;
}

.ewm-box {
  width: 16%;
  margin: 0 20px 0 20px;
}

.ewm-box img {
  width: 100%;
  height: auto;
}

.ditu-box {
  position: absolute;
  height: 30%;
  bottom: 8%;
  z-index: 1;

}

.ditu-box a{
  display: block;
  width: 100%;
}

/* 产品轮播 */

.cd-gallery {
  width: 100%;
  height: 100%;
}
.cd-gallery::after {
  clear: both;
  content: "";
  display: table;
}
.cd-gallery > li {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;

}
.cd-gallery > li > a {
  display: block;
}
@media only screen and (min-width: 768px) {
  .cd-gallery {
  }
  .cd-gallery > li {
    width: 100%;
    float: left;
  }
  .cd-gallery > li:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1048px) {
  .cd-gallery {
  }
  .no-touch .cd-gallery > li:hover .cd-dots li.selected a {
    /* Slider dots - change background-color of the selected dot when hover over the its parent list item */
    background: #2f2933;
    border-color: #2f2933;
  }
  .no-touch .cd-gallery > li:hover .cd-dots a {
    /* Slider dots - change dot border-color when hover over the its parent list item */
    border-color: #9688a0;
  }
  .no-touch .cd-gallery > li:hover li.move-right, .no-touch .cd-gallery > li:hover li.move-left {
    /* show preview items when hover over the its parent list item */
    opacity: 0.3;
  }
}

.cd-item-wrapper {
  position: relative;
}
.cd-item-wrapper li {
  position: absolute;
  top: 5px;
  left: 38%;
  height: 100%;
  width: 25%;
  opacity: 0;
  margin-top:5%;
  /* Force Hardware Acceleration */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform, opacity;
  -webkit-transform: translateX(200%) scale(0.7);
  -moz-transform: translateX(200%) scale(0.7);
  -ms-transform: translateX(200%) scale(0.7);
  -o-transform: translateX(200%) scale(0.7);
  transform: translateX(200%) scale(0.7);
  -webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
  -moz-transition: -moz-transform 0.4s, opacity 0.4s;
  transition: transform 0.4s, opacity 0.4s;
}

.cd-item-wrapper>.selected>.xilie-box h1{
  width: 100%;
  position: relative;
}

.cd-item-wrapper>.selected>.xilie-box h1 a{

}




.cd-item-wrapper li.selected {
  /* selected item */
  position: relative;
  opacity: 1;
  -webkit-transform: translateX(0) scale(1.3);
  -moz-transform: translateX(0) scale(1.3);
  -ms-transform: translateX(0) scale(1.3);
  -o-transform: translateX(0) scale(1.3);
  transform: translateX(0) scale(1.3);
}
.cd-item-wrapper li.move-left {
  /* item on left - preview visible */
  -webkit-transform: translateX(-100%) scale(0.7);
  -moz-transform: translateX(-100%) scale(0.7);
  -ms-transform: translateX(-100%) scale(0.7);
  -o-transform: translateX(-100%) scale(0.7);
  transform: translateX(-100%) scale(0.7);
  opacity: 0.3;
}
.cd-item-wrapper li.move-right {
  /* item on right - preview visible */
  -webkit-transform: translateX(100%) scale(0.7);
  -moz-transform: translateX(100%) scale(0.7);
  -ms-transform: translateX(100%) scale(0.7);
  -o-transform: translateX(100%) scale(0.7);
  transform: translateX(100%) scale(0.7);
  opacity: 0.3;
}
.cd-item-wrapper li.hide-left {
  /* items hidden on the left */
  -webkit-transform: translateX(-200%) scale(0.7);
  -moz-transform: translateX(-200%) scale(0.7);
  -ms-transform: translateX(-200%) scale(0.7);
  -o-transform: translateX(-200%) scale(0.7);
  transform: translateX(-200%) scale(0.7);
}
.cd-item-wrapper li img {
  display: block;
  width: 100%;
}
@media only screen and (min-width: 1048px) {
  .cd-item-wrapper li.move-left,
  .cd-item-wrapper li.move-right {
    /* hide preview items */
    opacity: .5;
    height: 20%;
  }

  .cd-item-wrapper li.move-left{
    padding-right: 8%;

  }

  .cd-item-wrapper li.move-right{
    padding-left:4% ;
  }
  .cd-item-wrapper li.focus-on-left {
    /* class added to the .selected and .move-right items when user hovers over the .move-left item (item preview on the left) */
    -webkit-transform: translateX(3%) scale(1.25);
    -moz-transform: translateX(3%) scale(1.25);
    -ms-transform: translateX(3%) scale(1.25);
    -o-transform: translateX(3%) scale(1.25);
    transform: translateX(3%) scale(1.25);
  }
  .cd-item-wrapper li.focus-on-left.move-right {
    -webkit-transform: translateX(103%) scale(0.7);
    -moz-transform: translateX(103%) scale(0.7);
    -ms-transform: translateX(103%) scale(0.7);
    -o-transform: translateX(103%) scale(0.7);
    transform: translateX(103%) scale(0.7);
  }
  .cd-item-wrapper li.focus-on-right {
    /* class added to the .selected and .move-left items when user hovers over the .move-right item (item preview on the right) */
    -webkit-transform: translateX(-3%) scale(1.25);
    -moz-transform: translateX(-3%) scale(1.25);
    -ms-transform: translateX(-3%) scale(1.25);
    -o-transform: translateX(-3%) scale(1.25);
    transform: translateX(-3%) scale(1.25);
  }
  .cd-item-wrapper li.focus-on-right.move-left {
    -webkit-transform: translateX(-103%) scale(0.7);
    -moz-transform: translateX(-103%) scale(0.7);
    -ms-transform: translateX(-103%) scale(0.7);
    -o-transform: translateX(-103%) scale(0.7);
    transform: translateX(-103%) scale(0.7);
  }
  .cd-item-wrapper li.hover {
    /* class added to the preview items (.move-left or .move-right) when user hovers over them */
    opacity: 1 !important;
  }
  .cd-item-wrapper li.hover.move-left {
    -webkit-transform: translateX(-97%) scale(0.75);
    -moz-transform: translateX(-97%) scale(0.75);
    -ms-transform: translateX(-97%) scale(0.75);
    -o-transform: translateX(-97%) scale(0.75);
    transform: translateX(-97%) scale(0.75);
  }
  .cd-item-wrapper li.hover.move-right {
    -webkit-transform: translateX(97%) scale(0.75);
    -moz-transform: translateX(97%) scale(0.75);
    -ms-transform: translateX(97%) scale(0.75);
    -o-transform: translateX(97%) scale(0.75);
    transform: translateX(97%) scale(0.75);
  }
}

.cd-dots {
  /* not visible in the html document - created using jQuery */
  position: absolute;
  bottom:20px;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: .2em;
}
.cd-dots::after {
  clear: both;
  content: "";
  display: table;
}
.cd-dots li {
  display: inline-block;
  float: left;
  margin: 0 5px;
  pointer-events: none;
}
.cd-dots li.selected a {
  background: #2f2933;
  border-color: #2f2933;
}
.cd-dots a {
  display: block;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  border: 1px solid #9688a0;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  -webkit-transition: border-color 0.2s, background-color 0.2s;
  -moz-transition: border-color 0.2s, background-color 0.2s;
  transition: border-color 0.2s, background-color 0.2s;
}
@media only screen and (min-width: 1048px) {
  .cd-dots li {
    pointer-events: auto;
  }
  .cd-dots li.selected a {
    background: #e69e1a;
    border-color: #fff;
  }
  .cd-dots a {
    height: 8px;
    width: 8px;
    border-color: #000;
    /* fix a bug in IE9/10 - transparent anchor not clickable */
    background-color: rgba(255, 255, 255, 0);
  }
}

.cd-item-info {
  height: 90px;
  line-height: 90px;
  padding: 0 2em;
}
.cd-item-info::after {
  clear: both;
  content: "";
  display: table;
}
.cd-item-info b, .cd-item-info .cd-price, .cd-item-info .cd-new-price {
  font-weight: bold;
  font-size: 2rem;
}
.cd-item-info b {
  float: left;
}
.cd-item-info b a {
  color: #2f2933;
}
.cd-item-info .cd-price, .cd-item-info .cd-new-price {
  /* .cd-new-price not visible in the html document - created using jQuery */
  float: right;
}
.cd-item-info .cd-price {
  color: #a5d05e;
  position: relative;
  margin-left: 10px;
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  transition: color 0.2s;
}
.cd-item-info .cd-price::after {
  /* crossing line - visible if price is on sale */
  content: '';
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  height: 2px;
  width: 0%;
  background-color: #a5d05e;
  opacity: 0;
  -webkit-transition: width 0.2s 0s, opacity 0s 0.2s;
  -moz-transition: width 0.2s 0s, opacity 0s 0.2s;
  transition: width 0.2s 0s, opacity 0s 0.2s;
}
.cd-item-info .cd-price.on-sale::after {
  opacity: 1;
  width: 100%;
  -webkit-transition: width 0.2s 0s, opacity 0s 0s;
  -moz-transition: width 0.2s 0s, opacity 0s 0s;
  transition: width 0.2s 0s, opacity 0s 0s;
}
.cd-item-info .cd-new-price {
  /* new price - visible if price is on sale */
  color: #e76363;
  opacity: 0;
  -webkit-transform: translateX(5px);
  -moz-transform: translateX(5px);
  -ms-transform: translateX(5px);
  -o-transform: translateX(5px);
  transform: translateX(5px);
  -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
  -moz-transition: -moz-transform 0.2s, opacity 0.2s;
  transition: transform 0.2s, opacity 0.2s;
}
.cd-item-info .cd-new-price.is-visible {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}




@media only screen and (min-width: 1440px) {

  .about-wajj p{
    line-height: 30px!important;
  }

.about-pwa{
  height: 210px!important;
}

.about-cai{
  width: 61%!important;
}

.clzc-imgbox{
  position: relative;
  left: -10%;
}


}






@media only screen and (min-width: 768px) {
  .cd-item-info b, .cd-item-info .cd-price, .cd-item-info .cd-new-price {
    font-size: 2.4rem;
  }
}

.no-js .move-right,
.no-js .move-left {
  display: none;
}

/* --------------------------------

xcredits

-------------------------------- */
.credits {
  width: 90%;
  margin: 2em auto;
  text-align: center;
}

.no-touch .credits a:hover {
  text-decoration: underline;
}

.chanp-tupian div img{
  width: 100%;
}

.chanp-tupian>div{
  width: 340px!important;
  background: none!important;
}



#div1{
  width: 100%;
  height: 600px;
  position: relative;
  overflow: hidden;
 }
 #div1 ul{
  position:absolute;
  left:0;
  top:0;
  overflow: hidden;
 }

 #div1 ul li{
  float: left;
  width: 380px;
  height: 600px;
  list-style: none;
  margin-left: 40px;
 }

 #div1 ul li img{
   width: 100%;
 }

 .index-3 .chanp-box a:nth-of-type(1){
  position: absolute;
  margin-top: 134%;
  z-index: 999;
 }

 .index-3 .chanp-box a:nth-of-type(2){
  position: absolute;
  right: 0;
  margin-top: 23%;
  z-index: 999;
 }

.chanp-syimg img{
  width: 100%;
}


 .inner{

 }
